.editorial-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 2rem;
  height: auto;
}

.editorial-page {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
  url("Images/peer_review_bg.jpg");
  padding: 2rem;
  margin: 1px 50px 5px 50px;
}

.editorial-page h2 {
    color: var(--orange);
    margin: 0.2rem 0;
    font-size: 2.5rem;
}

.editorial-page h3 {
    color: var(--orange);
    margin: 0.2rem 0;
    font-size: 1.5rem;
}

.text-white {
  color: var(--white);
}


.editor-section {
  margin-top: 2rem;
}

.editor-card {
  display: flex;
  align-items: center; /* Ensures vertical centering */
  gap: 50px;
  margin: 20px 0;
  background-color: white;
  padding: 20px;
  border-left: 4px solid #00695c;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap; /* Prevents overflow on smaller screens */
}

.editor-card img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.editor-card div {
  flex: 1;
  min-width: 250px;
}

.editor-card ul {
  padding-left: 20px;
  list-style: disc;
}

.advisory-list {
  list-style-type: disc;
  padding-left: 20px;
}

.responsibility-list {
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.6;
  padding-left: 20px;
  list-style: disc;
}

